From: Debian GPS team Date: Tue, 2 Sep 2025 14:42:35 +0000 (+0200) Subject: gpsbabelfe_disable_version_check X-Git-Tag: archive/raspbian/1.10.0+ds-2+rpi1^2~8 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=2e7c8c662851d10df74ea6f569583f2dfa89f17a;p=gpsbabel.git gpsbabelfe_disable_version_check Disable version mismatch check. Gbp-Pq: Name gpsbabelfe_disable_version_check --- diff --git a/gui/babeldata.h b/gui/babeldata.h index b79cd1dcd..467c7413e 100644 --- a/gui/babeldata.h +++ b/gui/babeldata.h @@ -153,7 +153,7 @@ public: bool startupVersionCheck_{true}; bool reportStatistics_{true}; bool allowBetaUpgrades_{false}; - bool ignoreVersionMismatch_{false}; + bool ignoreVersionMismatch_{true}; bool disableDonateDialog_{false}; QDateTime donateSplashed_; }; diff --git a/gui/preferences.cc b/gui/preferences.cc index 1cef2afd6..f12978f1f 100644 --- a/gui/preferences.cc +++ b/gui/preferences.cc @@ -49,7 +49,6 @@ Preferences::Preferences(QWidget* parent, QList& formatList, ui_.startupCheck->setChecked(babelData_.startupVersionCheck_); ui_.reportStatisticsCheck->setChecked(babelData_.reportStatistics_); - ui_.ignoreVersionMismatchCheck->setChecked(babelData_.ignoreVersionMismatch_); connect(ui_.buttonBox, &QDialogButtonBox::accepted, this, &Preferences::acceptClicked); connect(ui_.buttonBox, &QDialogButtonBox::rejected, this, &Preferences::rejectClicked); @@ -89,7 +88,6 @@ void Preferences::acceptClicked() babelData_.startupVersionCheck_ = ui_.startupCheck->isChecked(); babelData_.reportStatistics_ = ui_.reportStatisticsCheck->isChecked(); - babelData_.ignoreVersionMismatch_ = ui_.ignoreVersionMismatchCheck->isChecked(); accept(); } diff --git a/gui/preferences.ui b/gui/preferences.ui index 3bea6c2ca..ac671d7d9 100644 --- a/gui/preferences.ui +++ b/gui/preferences.ui @@ -53,13 +53,6 @@ - - - - Ignore mismatch between command line and GUI version. - - -